home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / wsc4vb24 / vba32.txt < prev    next >
Text File  |  1999-05-27  |  735b  |  20 lines

  1. *** Emailing from Win32 VBA Applications ***
  2.  
  3. This file explains how to email from Office 97 VBA applications, such as
  4. EXCEL 97, ACCESS 97, and WORD 97.
  5.  
  6. (1) Start EXCEL 97 (or other Office 97 program).
  7. (2) Enter design mode. You may have to enable the "Controls Toolbox" first.
  8.     Choose "Tools" on the menu bar, then "Customize", and then check the 
  9.     "Control Toolbox".
  10. (3) From the control toolbox, choose and position the "Command Button".
  11.     This will create code that looks like
  12.  
  13.         Private Sub CommandButton1_Click()
  14.  
  15.         End Sub
  16.  
  17. (4) Replace the generated code with MODULE32.BAS. The easiest way to do this
  18.     is to paste from the clipboard.
  19. (5) Exit design mode, and run your application.  
  20.